func internal/runtime/maps.newTable

6 uses

	internal/runtime/maps (current package)
		map.go#L313: 		directory[i] = newTable(mt, uint64(targetCapacity)/dirSize, i, m.globalDepth)
		map.go#L601: 	tab := newTable(typ, 2*abi.SwissMapGroupSlots, 0, 0)
		table.go#L74: func newTable(typ *abi.SwissMapType, capacity uint64, index int, localDepth uint8) *table {
		table.go#L1048: 	left := newTable(typ, maxTableCapacity, -1, localDepth)
		table.go#L1049: 	right := newTable(typ, maxTableCapacity, -1, localDepth)
		table.go#L1092: 	newTable := newTable(typ, uint64(newCapacity), t.index, t.localDepth)